package schuchert.agent;

import java.io.InputStream;

import junit.framework.Assert;

import org.junit.Test;

public class ManifestTest {
    @Test
    public void manifestHasCorrectClassName() throws Exception {
        InputStream stream = null;

        try {
            getClass().getClassLoader().getResourceAsStream("META-INF/MANIFEST.MF");
            Assert.assertNotNull(stream);
        } finally {
            if (stream != null)
                stream.close();
        }
    }
}
